- DO STAY WITHIN THE USER'S AUTHORIZATION.
- Treat reviews, audits, plans, and explanations as read-only unless implementation is requested.
- Ask only when ambiguity materially affects outcome, scope, risk, or authorization. Otherwise make a reasonable assumption and proceed.
Discover gists
| # A script to report on those mobile users who have not yet | |
| # migrated to EMDM-Cloud | |
| # Select the input data file | |
| Add-Type -AssemblyName System.Windows.Forms | |
| $FileBrowser = New-Object System.Windows.Forms.OpenFileDialog -Property @{ | |
| Filter = 'CSV (Comma delimited) (*.csv)|*.csv' | |
| Title = 'Open CSV file' } | |
| $null = $FileBrowser.ShowDialog() |
Last Updated: March 2023
IMPORTANT: Ignore the out-of-date steps below for getting Chromium keys.
Instead, read this up-to-date guide (Jan 2023) written by @LearningToPi.
P.S. Thank you to every contributor below who provided tips over the years on what should be a straightforward process: setting up Chromium for local development.
Long live the web!
A pattern for building personal knowledge bases using LLMs.
This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.
Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.
| # Heavily inspired by https://haluk.github.io/posts-output/2020-10-19-linux/ | |
| # Replace <IFNAME> with wifi device name | |
| # Replace <IDENTITY> with student identity (i.e. <USERNAME>@ntnu.no) | |
| # Replace <PASSWORD> with user password | |
| nmcli con add \ | |
| type wifi \ | |
| ifname <IFNAME> \ | |
| con-name eduroam \ | |
| ssid eduroam \ |
- First, you need to open cmd in the admin mode, then run all commands below one by one.
- For x86 and x64
cd /d %ProgramFiles(x86)%\Microsoft Office\Office16
| #!/bin/bash | |
| # This is a script that will install a minimal GNOME on a minimal Fedora Everything install | |
| # This script was made for Fedora 38 | |
| # 1. Get the Fedora Everything ISO: https://alt.fedoraproject.org/ | |
| # 2. When installing select "Minimal install" where you select software. | |
| # Install curl to download and run this script trough that, or just copy paste the lines | |
| # Let's make dnf a little bit faster first |